home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_bas / roseqb3.zip / VENDINFO.DIZ < prev   
VENDINFO  |  1996-01-30  |  9KB  |  192 lines

  1. +-------------------------------------------────────-----────────----+
  2. | This VENDINFO Product Information File contains both readable text |
  3. | and tools-accessible data about a product.  See the last text      |
  4. | section, below, for more information about VENDINFO and its tools. |
  5. +--------------------------------------------------------------------+
  6. VENDINFO standard v1.04, produced by VendEdit v1.30, 30-Jan-1996
  7.  
  8. ===== Product Information ==============================
  9.    Product:             Rosewood Quickbasic Stuff Input Editor & Window Routine
  10.    Version:             3.00
  11.    Version Date:        30-Jan-1996
  12.    Product Type:        Software
  13.    Basic Distribution Policy (see License, below, for details):
  14.       Freeware, copyrighted but freely distributable and useable
  15.  
  16.    Product Description: Rosewood Quickbasic Stuff v3.00 <ASP> Input 
  17.                         editor and window routine for QuickBasic and 
  18.                         QBasic. Routines for professional input and 
  19.                         windowing for your QB programs. Source code 
  20.                         included. Can accomodate as many different 
  21.                         inputs as can be fitted onto a screen. Edit 
  22.                         masks can be coded for virtually any need. 
  23.                         The window routines are easy to call and have
  24.                         several options for look and content. 
  25.    Reason for version:  update
  26.  
  27.    Category:            Computer programming; Languages; BASIC
  28.    Keywords:            Basic QBasic Editor Window Rosewood
  29.    Required Packages:   ROSEQB3
  30.    This Package:        ROSEQB3
  31.  
  32.    Required Configuration
  33.       Processor Family: Intel 80x86 (minimum 8086/8088)
  34.       Minimum OS:       MS-DOS 2.1
  35.  
  36.    Orders:
  37.       Address:          Rosewood Software
  38.                         135-10 Livonia Place
  39.                         Scarborough, Ontario M1E 4W6
  40.                         Canada
  41.       Phone:            (416) 284-6119
  42.       FAX:              (416) 284-6119
  43.       CompuServe:       70461,2507
  44.       Internet:         70461.2507@compuserve.com
  45.  
  46.    Support:
  47.       Address:          Rosewood Software
  48.                         135-10 Livonia Place
  49.                         Scarborough, Ontario M1E 4W6
  50.                         Canada
  51.       Phone:            (416) 284-6119
  52.       FAX:              (416) 284-6119
  53.       CompuServe:       70461,2507
  54.       Internet:         70461.2507@compuserve.com
  55.  
  56.  
  57. ===== Information for Users ("READ-ME") ================
  58.  
  59.  
  60. ROSEWOOD QUICKBASIC STUFF v 3 consists of two programs which can be
  61. incorporated into programs written in QuickBasic 4.xx or QBasic which is
  62. supplied with MS DOS 5 and 6. Libraries or commands such as CALL
  63. INTERRUPT not used in QBasic are not needed with this code.
  64.  
  65. There are two distinct parts of the program:
  66.  
  67. The first is an input editor which will replace the commands "INPUT",
  68. "LINE INPUT", etc. with an input routine written with INKEY$ as the
  69. input. INKEY$ allows much nicer inputting, especially if you have several
  70. inputs to process in succession. This editor can be set up to accept
  71. various types of input and to block other types. This will greatly reduce
  72. the amount of error checking which is associated with the usual input
  73. functions. Some parts of this program may look ancient with its IF..ENDs
  74. and GOTOs. However, I like to have the ability to cascade through the
  75. editor. See how scan% = 8 becomes scan% = 83 in the backspace command
  76. area. The program could be written using only DO..LOOP, SELECT CASE etc.
  77. but I doubt that it would make the program work better. It would be
  78. prettier though. The editor is very loosely based on a program from the
  79. magazine, PC RESOURCES, October 1987, pg. 61
  80.  
  81. The second part of the code is a simple window program. Windows of any
  82. size or colour, with or without a border, can be placed anywhere on the
  83. screen with text justified left, centre and right, and then wiped off so
  84. that the original screen below is restored. The speed in drawing and
  85. erasing these windows is not as great as windows using registers and CALL
  86. ABSOLUTE, but it is adequate for most purposes.
  87.  
  88. There are two window routines, WindowSub and WindowSub2. The first makes
  89. use of code pages using PCOPY and the second stores the window
  90. information in arrays. The first is faster and easier to use but may not
  91. be supported by all computers.
  92.  
  93. This code is written by:      Bert Christensen Rosewood Software 135-10
  94. Livonia Place Scarborough, Ontario, Canada M1E 4W6 (416) 284-6119,
  95. CompuServe 70461,2507 Internet bert.christensen@canrem.com
  96.  
  97.                        Copyright (c) 1996 by Bert Christensen
  98.  
  99. Anyone is granted full permission to use all or part of this program
  100. without charge. However, if you should feel moved to send a donation, it
  101. will not be refused.
  102.  
  103. Any comments would be appreciated.
  104.  
  105. To try the program, you can run the executable file ROSEQBAS.EXE.
  106. The program code is in ROSEQBAS.BAS.
  107.  
  108.  
  109. ===== Packing List =====================================
  110.  
  111. As released by the author or publisher, this package contained the
  112. following files in addition to this VENDINFO.DIZ:
  113.  
  114.         Filename      Size     Date       Time     CRC32
  115.      ROSEQBAS.BAS    26102  30-Jan-1996  03:00a   E7136886
  116.       FILE_ID.DIZ      372  30-Jan-1996  03:00a   BA6DB0E7
  117.      ROSEQBAS.EXE    36218  30-Jan-1996  03:00a   AD28A81D
  118.        README.TXT       42  30-Jan-1996  03:00a   1573E71F
  119.  
  120.  
  121. ===== Installation =====================================
  122.  
  123. To try the program, run ROSEQBAS.EXE.
  124.  
  125. To use the code in your own program, cut and paste desired sections into
  126. your own QuickBasic, QBasic, Basic7, or VBDOS programs.
  127.  
  128.  
  129.  
  130. ===== Warranty =========================================
  131.  
  132.                               WARRANTY DISCLAIMER
  133.  
  134. Rosewood Software makes no warranty of any kind, express or implied,
  135. including without limitation, any  warranties of merchantability and/or
  136. fitness for a particular purpose. Rosewood Software shall not be liable
  137. for any  damages, whether direct, indirect, special, or consequential,
  138. arising from a failure of this program to operate in the manner desired
  139. by the user. Rosewood Software shall not be liable for any damage to data
  140. or property which may be caused directly or indirectly by use of the
  141. program.
  142.  
  143. IN NO EVENT WILL ROSEWOOD SOFTWARE BE LIABLE FOR ANY DAMAGES, INCLUDING
  144. ANY LOST PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL
  145. DAMAGES ARISING OUT OF YOUR USE OR INABILITY TO USE THE PROGRAM, OR FOR
  146. ANY CLAIM BY ANY OTHER PARTY.
  147.  
  148.  
  149.  
  150. ===== License for Use and Distribution =================
  151.  
  152.                                     LICENSE
  153.  
  154. Rosewood QuickBasic Stuff version 3.00 is Copyright (C) 1996 by Rosewood
  155. Software and Bert Christensen.
  156.  
  157. Rosewood QuickBasic Stuff can be copied and distributed freely with the
  158. proviso that the program must be copied in absolutely unmodified form,
  159. including all program files and complete documentation.
  160.  
  161. The attached VENDINFO data record is hereby incorporated by reference.
  162. Any distribution satisfying all the distribution requirements expressed
  163. in that data is hereby authorized.
  164.  
  165.  
  166.  
  167.  
  168. ===== About VENDINFO Files =============================
  169.  
  170. Each VENDINFO.DIZ file contains extensive information about a product.
  171. This "human-readable" section is followed by a compressed data record
  172. useable by automated tools.  The data record allows BBSes and other
  173. distributors to automate package handling, and provides users with a
  174. wealth of product information.  VENDINFO tools (free viewer for users,
  175. free or inexpensive processors for distributors, editors for authors)
  176. are available from many sources, including the originators of VENDINFO:
  177.   Rams' Island Software    Voice: 303-841-2848  CompuServe: 76244,324
  178.   7644 E. Lakecliff Way      BBS: 303-841-6269     FidoNet: 1:104/333
  179.   Parker, CO 80134-5904 USA  FAX: 303-841-6269        RIME: 1235
  180.  
  181.  
  182. ===== Compressed Data Record Follows ===================
  183.  
  184. PK
  185. pï> º▌┤∞£#    VENDDATA.#'    +K╦w≈≈≈¡uJ4⌐SúO$XÉ,└Ç>A■@∙╟∩cƒΣ<Γ≡₧█J}ys└ßgç Y±╛KëDJ};╖∞▌╖o╔éîZ7φ╪╡b├╬)<╚⌐tδÜ5c2⌐[╕uΘé,J6-▌╖rAÜy5¡[▓o∩é≡σ_ò:╙%LÿΩ_.┘░t╦£4¡RƒN-UΦ ─HdÖ±4-'╙
  186. |2HÉv₧┬âΣt*T╝░ Ç|Y╚ùazⁿ7Txg╚ùrå|    ╥╠Ñ    k!┬J╘º¿]j└/@√≥!é└╟h]>$0Å>çT├ë╜┼]■¡█░lAªyZ!Ä≡gJu┘=╗ÉV■¼▄░mτJñÅ9 ò_åuª╦╢Γ╔TMéI
  187. ⌠+╚!╝√²ÿ╩╖}SbσG■6æ╧ ΓΣ²▓r╦║Ñ│╩ì√£L~╠¬ïQ┘å^ΩÇ└Szò9wîΘN∩┬óX╟√╣kPÖu₧î├┌nZ9▌╦g¢7º⌠≥m⌡T╤û)(¿rc^å╖ßìn█╟└┌╓mX;û;δ/gn ù▀╞P╔&»_╙T=ªak┘¬]âPΓ"(X21░ááé
  188. Q≥éé(Y±╝ßà─OÉA°äó╝ƒ@`φ▄╝■╣y²ÿü∙╪µíÿ¬ú 0 ½ëxffÇÉ╟₧Ü$rräÆ#╠°42>úúΣêB▄Ñ╣èVn┌9s╛¢ Ü₧s│t∩l╣åJÄ9│f╦(║3Mkτ╚})τP┘DΦ╖J¥óα\«╪7$ăE╦Σ3wì p▓i╠ó i^╡ßiBz├ú▀╦8┌â─±èÆfL¢)A╩─I│Ñ═ÿ1s@ïIdüm╝    ôF·Y╩¼    ≤1┤ bêÇ╞╬┤{╔σÿΘεB╤ÇN$Ç└é
  189. hPña╬├K≤╥
  190.  É ═δ?Ç└4  ▀`ε`╠_7wµfä≈@`ÿΣ║äε`╠▀û*α²∩x └╦ PK
  191. pï> º▌┤∞£#     VENDDATA.PK*=